home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 4490 / 4490.xpi / chrome / wmn.jar / content / notifications.xul < prev    next >
Extensible Markup Language  |  2009-12-22  |  2KB  |  58 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <?xml-stylesheet href="chrome://wmn/content/preferences.css" type="text/css"?>
  4.  
  5. <!DOCTYPE prefwindow [
  6.   <!ENTITY % notificationsDTD SYSTEM "chrome://wmn/locale/notifications.dtd">
  7.   %notificationsDTD;
  8. ]>
  9.  
  10. <prefwindow id="SoundNotificationsDialog" type="child"
  11.             xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  12.             dlgbuttons="accept,cancel"
  13.             style="width: &window.width; !important;"
  14.             title="¬ificationsDialog.title;">
  15.  
  16.   <prefpane id="NotificationsDialogPane" onpaneload="gNotificationsDialog.init();">
  17.     <script type="application/x-javascript" src="chrome://wmn/content/notifications.js"/>
  18.  
  19.     <preferences>
  20.       <preference id="pref-customSound" name="extensions.wmn.customSound" type="bool"/>
  21.       <preference id="pref-soundUrl" name="extensions.wmn.soundUrl" type="string"/>
  22.     </preferences>
  23.     
  24.     <stringbundle id="bundlePreferences" src="chrome://wmn/locale/overlay.properties"/>
  25.     <groupbox>
  26.       <caption label="&soundNotification.caption;"/>
  27.         <radiogroup id="newMailNotificationType" preference="pref-customSound" orient="vertical">
  28.           <radio value="false"
  29.                  label="&systemsound.label;"
  30.                  accesskey="&systemsound.accesskey;" id="system"/>
  31.           <radio value="true" label="&customsound.label;"
  32.                  accesskey="&customsound.accesskey;" id="custom"/>
  33.         </radiogroup>
  34.  
  35.         <vbox>
  36.           <spacer flex="1"/>
  37.           <hbox class="indent">
  38.             <filefield id="soundUrlLocation" flex="1" preference="pref-soundUrl"
  39.                        preference-editable="true"
  40.                        onsyncfrompreference="return gNotificationsDialog.readSoundLocation();"/>
  41.             <button id="browse" label="&browse.label;"
  42.                     accesskey="&browse.accesskey;" oncommand="gNotificationsDialog.browseForSoundFile();"/>
  43.           </hbox>
  44.  
  45.           <separator class="thin"/>
  46.  
  47.           <hbox align="right">
  48.             <button id="preview" label="&preview.label;"
  49.                     accesskey="&preview.accesskey;" oncommand="gNotificationsDialog.previewSound();"/>
  50.           </hbox>
  51.  
  52.         </vbox>
  53.     </groupbox>
  54.  
  55.     <separator/>
  56.   </prefpane>
  57. </prefwindow>
  58.